home *** CD-ROM | disk | FTP | other *** search
/ Touch Games Collection / Touch Games 1.zip / Touch Games 1 / install.bat < prev    next >
DOS Batch File  |  1999-12-15  |  875b  |  44 lines

  1. @echo off
  2. cls
  3. if "%1" == "" GOTO USAGE
  4. if not exist %1\Autorun.inf GOTO NOT_EXIST
  5. if not exist %1\Tgames.exe  GOTO NOT_EXIST
  6. if not exist %1\Tgames.cfg  GOTO NOT_EXIST
  7. if not exist %1\Icono.ico   GOTO NOT_EXIST
  8. if not exist %1\Prices.lst  GOTO NOT_EXIST
  9.  
  10. :INSTALL
  11. cls
  12. echo Instalando.....
  13. md C:\TGames
  14. xcopy /s %1 C:\TGames
  15. copy a:\data\*.exe C:\TGames
  16. copy a:\data\*.qst C:\TGames\Questions
  17. c:
  18. cd TGames
  19. attrib -r -h /s *.*
  20. deltree /y records
  21. del autorun.inf
  22. TGames
  23. goto END
  24.  
  25. :NOT_EXIST
  26. cls
  27. echo Error: La unidad no contine el juego "Touch games"
  28. goto END
  29.  
  30. :USAGE
  31. cls
  32. echo Uso: Install  [letra de unidad cd-rom:]
  33. echo        por ejemplo: Install d:
  34. echo .....
  35. echo NOTA: La instalacion copiara el juego en la carpeta C:\TGames
  36. echo       Necesitara 185 Mbytes de espacio libre en tu disco duro
  37. echo .....
  38. goto END
  39.  
  40. :END
  41. @echo on
  42.  
  43.  
  44.